home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / WIN_PRO / MENUBA.ZIP;1 / TEST.ZIP / TEST < prev   
Encoding:
Text File  |  1992-01-05  |  257 b   |  15 lines

  1. all: test.exe
  2.  
  3. test.res: test.rc test.dlg
  4.     rc -r test.rc
  5.  
  6. test.obj: test.c
  7.     cl -c -AM -Gsw -Od -Zpe test.c
  8.  
  9. test.exe:: test.obj test.def
  10.     link /NOD test, , , mlibcew libw, test.def
  11.     rc test.res
  12.  
  13. test.exe:: test.res
  14.     rc test.res
  15.